home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="MRU/Computers">
- <SELECT id="ComboBoxID" onchange = "ComboBox.cbo_OnChange();" style="WIDTH:300">
- <xsl:for-each select="Computer">
- <xsl:sort select="@date" order="descending"/>
- <option><xsl:value-of select="@name"/></option>
- </xsl:for-each>
- </SELECT>
- </xsl:template>
- </xsl:stylesheet>